home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
vbmdixpl
/
form1.frm
< prev
next >
Wrap
Text File
|
1995-05-07
|
2KB
|
66 lines
VERSION 2.00
Begin Form Form1
Caption = "Form 0"
ClientHeight = 3765
ClientLeft = 1455
ClientTop = 2625
ClientWidth = 6390
Height = 4170
Left = 1395
LinkTopic = "Form1"
MDIChild = -1 'True
ScaleHeight = 3765
ScaleWidth = 6390
Top = 2280
Width = 6510
Begin Label Label1
AutoSize = -1 'True
Caption = "This is a MDI Child Window"
Height = 192
Index = 2
Left = 240
TabIndex = 2
Top = 1320
Width = 2256
End
Begin Label Label1
AutoSize = -1 'True
Caption = "and a floating Toolbar"
Height = 192
Index = 1
Left = 240
TabIndex = 1
Top = 840
Width = 1848
End
Begin Label Label1
AutoSize = -1 'True
Caption = "Sample MDI Application with Common Dialogs"
Height = 192
Index = 0
Left = 240
TabIndex = 0
Top = 360
Width = 3828
End
End
Sub Form_GotFocus ()
' Test for Stausline
Action (" Active Form: " + Me.Caption)
End Sub
Sub Form_MouseDown (Button As Integer, Shift As Integer, x As Single, y As Single)
Call ShowPopup(Me, x, y)
End Sub
Sub Form_QueryUnload (Cancel As Integer, UnloadMode As Integer)
' delete, if this is nagging
If UnloadMode = 0 Then ' User clicked close-box
If Not Doit("Close " + Me.Caption + " ?") Then
Cancel = 1
End If
End If
End Sub